home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EuroCD 3
/
EuroCD 3.iso
/
Programming
/
BlitzBasic
/
EFMUILib
/
Install
< prev
next >
Wrap
Text File
|
1998-06-24
|
2KB
|
73 lines
;Install script for EFMUILib 1.4
;By Erwan Fouret
;©1997/98 Vivid Imagination
echo ",---------------------------------."
echo "| Installing EFMUILib version 1.4 |"
echo "| ©1997/98 by Vivid Imagination |"
echo "`---------------------------------'"
echo ""
Ask "Do you really want to install EFMUILib 1.4 ?"
If NOT Warn
skip end
EndIf
echo ""
echo "Copying the lib..."
copy blitzlibs/userlibs/EFMUILib.obj blitzlibs:userlibs/
echo ""
echo "Copying the resident..."
copy blitzlibs/mui.res blitzlibs:
echo ""
echo "Checking and changing lib number..."
cln EFMUILib 8 FIXEDNUM
echo ""
echo "Making Deflibs..."
mdl
echo ""
Ask "Do you want to copy examples?"
If Warn
echo "Copying examples..."
If Not Exists Blitz2:Developers/userlibprogs
MakeDir Blitz2:Developers
MakeDir Blitz2:Developers/userlibprogs
EndIf
Copy Examples/#? TO Blitz2:Developers/userlibprogs/ ALL QUIET
echo "Examples successfully copied to Blitz2:Developers/userlibsprogs/"
echo ""
EndIf
Ask "Do you want to copy the documentation?"
If Warn
echo "Copying the english doc..."
If Not Exists Blitz2:REDHelp/AcidGuides
If Not Exists Blitz2:Developers/userlibdocs
Copy Doc/EFMUILIB.guide#? TO Blitz2: QUIET
echo "Documentation successfully copied to Blitz2:"
Else
Copy Doc/EFMUILIB.guide#? TO Blitz2:Developers/userlibdocs/ QUIET
echo "Documentation successfully copied to Blitz2:Developers/userlibdocs/"
EndIf
Else
Copy Doc/EFMUILIB.guide TO Blitz2:REDHelp/AcidGuides/
Echo >> Blitz2:REDHelp/REDHelp.dat "`ln blitzlibs:userlibs/EFMUILib.obj` Blitz2:REDHelp/AcidGuides/EFMUILib.guide"
echo "Documentation successfully copied to Blitz2:REDHelp/AcidGuides/*nAnd successfully installed into SuperTED (use Alt+Help)"
EndIf
echo ""
EndIf
echo ""
echo "All done! EFMUILib has been successfully installed!"
echo "Please report all bugs, remarks and suggestions to :*n"
echo "Erwan.Fouret@wanadoo.fr (Erwan Fouret)"
echo "or"
echo "andy@bjuv.mail.telia.com (Andreas Håkansson)"
echo ""
lab end